home *** CD-ROM | disk | FTP | other *** search
- /* Prototypes for routines that app must provide and some constants */
- #include "AppInterface.h"
-
- /* The number of Shell Menus */
- #define kNumShellMenus 3 /* Apple, file, and edit */
-
- /* the About... Alert ID*/
- #define kAboutAlertID 128
-
- /*-------------------------
- Prototypes
- -------------------------*/
-
- /* init.c */
- void initshell(void);
-
- /* events.c */
- void DoEvent(EventRecord *Event);
- void DoMouse(EventRecord *eventptr);
- void DoKey(EventRecord *eventptr);
- void DoOS(EventRecord *eventptr);
- void DoHighLevel(EventRecord *eventPtr);
- void DoMenus(long mstuff);
- void DoApple(short item);
- void DoFile(short item);
- void DoEdit(short item);
- void BailOut(void);
-
- /* utils.c prototypes are in AppInterface.h */
-